home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 26
/
Cream of the Crop 26.iso
/
os2
/
octa209s.zip
/
octave-2.09
/
libs
/
readline
/
examples
/
makefile
< prev
next >
Wrap
Makefile
|
1996-11-01
|
267b
|
13 lines
CFLAGS = -O -I../../
CC = gcc
%.o : %.cc ; $(CC) $(CFLAGS) -c $< -o $@
%.o : %.c ; $(CC) $(CFLAGS) -c $< -o $@
all: fileman.exe
fileman.exe: fileman.o ../readline.a
$(CC) -o fileman.exe fileman.o ../readline.a -lxmalloc -Zcrtdll
fileman.o: fileman.c